Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Fri, 7 Mar 2003 02:36:11 +0000 (02:36 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Fri, 7 Mar 2003 02:36:11 +0000 (02:36 +0000)
commit257f53c365e5d38270d35b629f5cad45cb04101d
treede56e2fbfeb21e84b9afa88844d069c06ea711ea
parent68b0a90c92a8c81724903c35309cf64c54838618
Author: Kev <klmitch@mit.edu>
Log message:

Finally, the long awaited database primitives library is committed.  This
is missing some test cases for the sparse matrices--I'm not going to have
much time in the near future, so I figured I should at least try to solicit
people's help with that aspect of it.  The library also includes complete
(hopefully) documentation, generated by doxygen--see the doc subtree for
that.  Works well, as far as the test cases I've written are concerned :)
The auto-resizing hash tables will be among the biggest wins for ircu, as
will the sparse matrices.

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@923 c9e4aea6-c8fd-4c43-8297-357d70d61c8c
101 files changed:
ChangeLog
libs/dbprim/COPYING [new file with mode: 0644]
libs/dbprim/ChangeLog [new file with mode: 0644]
libs/dbprim/INSTALL [new file with mode: 0644]
libs/dbprim/Makefile.am [new file with mode: 0644]
libs/dbprim/Makefile.in [new file with mode: 0644]
libs/dbprim/_hash_prime.c [new file with mode: 0644]
libs/dbprim/_smat_comp.c [new file with mode: 0644]
libs/dbprim/_smat_hash.c [new file with mode: 0644]
libs/dbprim/_smat_resize.c [new file with mode: 0644]
libs/dbprim/acinclude.m4 [new file with mode: 0644]
libs/dbprim/aclocal.m4 [new file with mode: 0644]
libs/dbprim/comp_et-sh.in [new file with mode: 0755]
libs/dbprim/config.guess [new file with mode: 0755]
libs/dbprim/config.sub [new file with mode: 0755]
libs/dbprim/configure [new file with mode: 0755]
libs/dbprim/configure.in [new file with mode: 0644]
libs/dbprim/dbprim.h.bot [new file with mode: 0644]
libs/dbprim/dbprim.h.top [new file with mode: 0644]
libs/dbprim/dbprim_err.et [new file with mode: 0644]
libs/dbprim/dbprim_int.h [new file with mode: 0644]
libs/dbprim/doc/Doxyfile [new file with mode: 0644]
libs/dbprim/doc/html/doxygen.css [new file with mode: 0644]
libs/dbprim/doc/html/doxygen.gif [new file with mode: 0644]
libs/dbprim/doc/html/group__dbprim__hash.html [new file with mode: 0644]
libs/dbprim/doc/html/group__dbprim__key.html [new file with mode: 0644]
libs/dbprim/doc/html/group__dbprim__link.html [new file with mode: 0644]
libs/dbprim/doc/html/group__dbprim__smat.html [new file with mode: 0644]
libs/dbprim/doc/html/index.html [new file with mode: 0644]
libs/dbprim/doc/html/modules.html [new file with mode: 0644]
libs/dbprim/doc/latex/Makefile [new file with mode: 0644]
libs/dbprim/doc/latex/doxygen.sty [new file with mode: 0644]
libs/dbprim/doc/latex/group__dbprim__hash.tex [new file with mode: 0644]
libs/dbprim/doc/latex/group__dbprim__key.tex [new file with mode: 0644]
libs/dbprim/doc/latex/group__dbprim__link.tex [new file with mode: 0644]
libs/dbprim/doc/latex/group__dbprim__smat.tex [new file with mode: 0644]
libs/dbprim/doc/latex/index.tex [new file with mode: 0644]
libs/dbprim/doc/latex/modules.tex [new file with mode: 0644]
libs/dbprim/doc/latex/refman.tex [new file with mode: 0644]
libs/dbprim/doc/man/man3/dbprim_hash.3 [new file with mode: 0644]
libs/dbprim/doc/man/man3/dbprim_key.3 [new file with mode: 0644]
libs/dbprim/doc/man/man3/dbprim_link.3 [new file with mode: 0644]
libs/dbprim/doc/man/man3/dbprim_smat.3 [new file with mode: 0644]
libs/dbprim/he_init.c [new file with mode: 0644]
libs/dbprim/ht_add.c [new file with mode: 0644]
libs/dbprim/ht_find.c [new file with mode: 0644]
libs/dbprim/ht_flush.c [new file with mode: 0644]
libs/dbprim/ht_free.c [new file with mode: 0644]
libs/dbprim/ht_init.c [new file with mode: 0644]
libs/dbprim/ht_iter.c [new file with mode: 0644]
libs/dbprim/ht_move.c [new file with mode: 0644]
libs/dbprim/ht_remove.c [new file with mode: 0644]
libs/dbprim/ht_resize.c [new file with mode: 0644]
libs/dbprim/install-sh [new file with mode: 0755]
libs/dbprim/le_init.c [new file with mode: 0644]
libs/dbprim/ll_add.c [new file with mode: 0644]
libs/dbprim/ll_find.c [new file with mode: 0644]
libs/dbprim/ll_flush.c [new file with mode: 0644]
libs/dbprim/ll_init.c [new file with mode: 0644]
libs/dbprim/ll_iter.c [new file with mode: 0644]
libs/dbprim/ll_move.c [new file with mode: 0644]
libs/dbprim/ll_remove.c [new file with mode: 0644]
libs/dbprim/ltmain.sh [new file with mode: 0644]
libs/dbprim/missing [new file with mode: 0755]
libs/dbprim/mkinstalldirs [new file with mode: 0755]
libs/dbprim/sh_find.c [new file with mode: 0644]
libs/dbprim/sh_flush.c [new file with mode: 0644]
libs/dbprim/sh_init.c [new file with mode: 0644]
libs/dbprim/sh_iter.c [new file with mode: 0644]
libs/dbprim/sh_move.c [new file with mode: 0644]
libs/dbprim/smat_freelist.c [new file with mode: 0644]
libs/dbprim/st_add.c [new file with mode: 0644]
libs/dbprim/st_find.c [new file with mode: 0644]
libs/dbprim/st_flush.c [new file with mode: 0644]
libs/dbprim/st_free.c [new file with mode: 0644]
libs/dbprim/st_init.c [new file with mode: 0644]
libs/dbprim/st_iter.c [new file with mode: 0644]
libs/dbprim/st_remove.c [new file with mode: 0644]
libs/dbprim/st_resize.c [new file with mode: 0644]
libs/dbprim/tests/Makefile.am [new file with mode: 0644]
libs/dbprim/tests/Makefile.in [new file with mode: 0644]
libs/dbprim/tests/t_he_init.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_addfind.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_flush.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_free.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_init.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_iter.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_move.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_remove.c [new file with mode: 0644]
libs/dbprim/tests/t_ht_resize.c [new file with mode: 0644]
libs/dbprim/tests/t_le_init.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_add.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_find.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_flush.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_init.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_iter.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_move.c [new file with mode: 0644]
libs/dbprim/tests/t_ll_remove.c [new file with mode: 0644]
libs/dbprim/tests/t_st_init.c [new file with mode: 0644]
libs/dbprim/tests/test-harness.c [new file with mode: 0644]
libs/dbprim/tests/test-harness.dat [new file with mode: 0644]