diff options
author | tabarbe <unknown> | 2010-08-04 21:52:41 +0000 |
---|---|---|
committer | tabarbe <unknown> | 2010-08-04 21:52:41 +0000 |
commit | 471bfd72d5c49ae66f0c64504e5eacc006f083f1 (patch) | |
tree | 363aa99233d98483f7d7175eaa751795e9c8ba54 /Source/Graph | |
parent | 043bb35883b8b71dfb8a70c3d9abe6a79a6ed212 (diff) |
Boogie: Removed trailing spaces in code
Diffstat (limited to 'Source/Graph')
-rw-r--r-- | Source/Graph/Graph.ssc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Graph/Graph.ssc b/Source/Graph/Graph.ssc index dcbd12a3..12f7fd8c 100644 --- a/Source/Graph/Graph.ssc +++ b/Source/Graph/Graph.ssc @@ -435,7 +435,7 @@ public class Graph<Node> { }
// mark root so it won't be used again
incomingEdges[rootIndex] = -1;
- Node root = numberToNode[rootIndex].Val;
+ Node root = numberToNode[rootIndex].Val; sorted.Add(root);
++sortedIndex;
foreach (Node s in this.Successors(root)){
|