source: tests/avltree/avl-private.h @ ee0fa3a

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since ee0fa3a was fd54fef, checked in by Michael Brooks <mlbrooks@…>, 3 years ago

Converting the project to use the new syntax for otype, dtype and ttytpe.

Changed prelude (gen), libcfa and test suite to use it. Added a simple deprecation rule of the old syntax to the parser; we might wish to support both syntaxes "officially," like with an extra CLI switch, but this measure should serve as a simple reminder for our team to try the new syntax.

  • Property mode set to 100644
File size: 391 bytes
RevLine 
[6b0b624]1#pragma once
[6e3ae00]2#include "avl.h"
3
4// functions that really shouldn't be exposed, but are to reduce compilation time
5
6// attempt to fix the tree, if necessary
[fd54fef]7forall(K | Comparable(K), V)
[6e3ae00]8tree(K, V) * tryFix(tree(K, V) * t);
9
10// sets parent field of c to be p
[fd54fef]11forall(K | Comparable(K), V)
[6e3ae00]12void setParent(tree(K, V) * c, tree(K, V) * p);
13
[fd54fef]14forall(K | Comparable(K), V)
[6e3ae00]15int height(tree(K, V) * t);
Note: See TracBrowser for help on using the repository browser.