summaryrefslogtreecommitdiff
path: root/Source/AIFramework/Polyhedra/SimplexTableau.cs
diff options
context:
space:
mode:
authorGravatar Michal Moskal <michal@moskal.me>2011-12-07 10:38:22 -0800
committerGravatar Michal Moskal <michal@moskal.me>2011-12-07 10:38:22 -0800
commitf2800362628674094694b1d95bc0ba093745b0d8 (patch)
tree85e397610b76f8fec1ba0dc694f88b834ec93746 /Source/AIFramework/Polyhedra/SimplexTableau.cs
parentf3c415a4cb9ffeaa67cdcab9ddd6903e61078b31 (diff)
Make set iteration order deterministic
Make the set class generic
Diffstat (limited to 'Source/AIFramework/Polyhedra/SimplexTableau.cs')
-rw-r--r--Source/AIFramework/Polyhedra/SimplexTableau.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/AIFramework/Polyhedra/SimplexTableau.cs b/Source/AIFramework/Polyhedra/SimplexTableau.cs
index 4c37e980..4d734c27 100644
--- a/Source/AIFramework/Polyhedra/SimplexTableau.cs
+++ b/Source/AIFramework/Polyhedra/SimplexTableau.cs
@@ -8,8 +8,8 @@ namespace Microsoft.AbstractInterpretationFramework {
using System;
using System.Diagnostics.Contracts;
using Microsoft.Basetypes;
- using IMutableSet = Microsoft.Boogie.Set;
- using HashSet = Microsoft.Boogie.Set;
+ using IMutableSet = Microsoft.Boogie.GSet<object>;
+ using HashSet = Microsoft.Boogie.GSet<object>;
/// <summary>