1ac399f57b
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@2086 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
38 lines
810 B
Prolog
38 lines
810 B
Prolog
/****************************************
|
|
File: tries.yap
|
|
Author: Ricardo Rocha
|
|
Comments: Tries module for Yap Prolog
|
|
version: $ID$
|
|
****************************************/
|
|
|
|
:- module(tries, [
|
|
trie_open/1,
|
|
trie_close/1,
|
|
trie_close_all/0,
|
|
trie_mode/1,
|
|
trie_put_entry/3,
|
|
trie_check_entry/3,
|
|
trie_get_entry/2,
|
|
trie_remove_entry/1,
|
|
trie_remove_subtree/1,
|
|
trie_join/2,
|
|
trie_intersect/2,
|
|
trie_count_join/3,
|
|
trie_count_intersect/3,
|
|
trie_save/2,
|
|
trie_load/2,
|
|
trie_stats/4,
|
|
trie_max_stats/4,
|
|
trie_usage/4,
|
|
trie_print/1,
|
|
open_trie/1,
|
|
close_trie/1,
|
|
close_all_tries/0,
|
|
put_trie_entry/4,
|
|
get_trie_entry/3,
|
|
remove_trie_entry/1,
|
|
print_trie/1
|
|
]).
|
|
|
|
:- load_foreign_files([tries], [], init_tries).
|