summaryrefslogtreecommitdiff
path: root/Source/Graph/Graph.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Graph/Graph.cs')
-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]