fix avl stuff and all/3 stuff

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1707 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2006-10-19 15:09:03 +00:00
parent cb34dbdc88
commit bd015b83ee
5 changed files with 14 additions and 9 deletions

View File

@@ -16,10 +16,13 @@
*************************************************************************/
:- module(avl, [
avl_new/1,
avl_insert/4,
avl_lookup/3
]).
avl_new([]).
avl_insert(Key, Value, T0, TF) :-
insert(T0, Key, Value, TF, _).