Changes in tests/avltree/avl-private.h [fd54fef:bf71cfd]
- File:
-
- 1 edited
-
tests/avltree/avl-private.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/avltree/avl-private.h
rfd54fef rbf71cfd 5 5 6 6 // attempt to fix the tree, if necessary 7 forall( K | Comparable(K),V)7 forall(otype K | Comparable(K), otype V) 8 8 tree(K, V) * tryFix(tree(K, V) * t); 9 9 10 10 // sets parent field of c to be p 11 forall( K | Comparable(K),V)11 forall(otype K | Comparable(K), otype V) 12 12 void setParent(tree(K, V) * c, tree(K, V) * p); 13 13 14 forall( K | Comparable(K),V)14 forall(otype K | Comparable(K), otype V) 15 15 int height(tree(K, V) * t);
Note:
See TracChangeset
for help on using the changeset viewer.