summaryrefslogtreecommitdiff
path: root/Source/Graph
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 13:56:41 -0800
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 13:56:41 -0800
commitd16213bd3b7f5b08ebddf85c5dac62a17fbf7e66 (patch)
tree6527f0c20039a35e891b830182dc2a4b2002e7bc /Source/Graph
parentab03eafe1c01840e7baab8fd51b4f00f11076d6a (diff)
Removed old comments about "BASEMOVE" and other constructor calls, where the conversion from Spec# into C# moved a constructor call
Diffstat (limited to 'Source/Graph')
-rw-r--r--Source/Graph/Graph.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Graph/Graph.cs b/Source/Graph/Graph.cs
index 947a5882..10c15b40 100644
--- a/Source/Graph/Graph.cs
+++ b/Source/Graph/Graph.cs
@@ -1118,7 +1118,7 @@ namespace Microsoft.Boogie.GraphUtil {
[NotDelayed]
public StronglyConnectedComponents(System.Collections.IEnumerable/*<Node!>*/ graph, Adjacency<Node> preds, Adjacency<Node> succs)
: base()
- {//BASEMOVE DANGER
+ {
Contract.Requires(succs != null);
Contract.Requires(preds != null);
Contract.Requires(graph != null);
@@ -1133,7 +1133,6 @@ namespace Microsoft.Boogie.GraphUtil {
this.graph = dict;
this.preds = preds;
this.succs = succs;
- //:base();
}
[Pure]