aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Postorder.v
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Postorder.v')
-rw-r--r--lib/Postorder.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Postorder.v b/lib/Postorder.v
index 0215a829..3181c4cc 100644
--- a/lib/Postorder.v
+++ b/lib/Postorder.v
@@ -79,7 +79,7 @@ Definition transition (s: state) : PTree.t positive + state :=
inr _ {| gr := s.(gr);
wrk := l;
map := PTree.set x s.(next) s.(map);
- next := Psucc s.(next) |}
+ next := Pos.succ s.(next) |}
| (x, y :: succs_x) :: l => (**r consider [y], the next unnumbered successor of [x] *)
match s.(gr)!y with
| None => (**r [y] is already numbered: discard from worklist *)