This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/library/tries.yap
vsc f7161d37c4 support for tries
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@727 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2002-12-12 20:47:36 +00:00

31 lines
830 B
Prolog

/*************************************************************************
* *
* YAP Prolog *
* *
* Yap Prolog was developed at NCCUP - Universidade do Porto *
* *
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
* *
**************************************************************************
* *
* File: tries.yap *
* Last rev: *
* mods: *
* comments: Tries manipulation routines *
* *
*************************************************************************/
:- module(tries, [
open_trie/1,
close_trie/1,
close_all_tries/0,
put_trie_entry/3,
get_trie_entry/2,
remove_trie_entry/1,
trie_statistics/0,
print_trie/1
]).
:- load_foreign_files([yap_tries], [], init_tries).