add debugging code to verify when a specific predicate is added.

This commit is contained in:
Vitor Santos Costa
2014-06-17 15:06:23 +01:00
parent e8f2c37000
commit 92f0a91f85
4 changed files with 32 additions and 14 deletions

View File

@@ -148,11 +148,11 @@ IDNUM id_table_retrieve(const ID_TABLE *this, TERM term)
IDNUM id_table_register(ID_TABLE *this, TERM term)
{
BPULONG hash;
// BPULONG hash;
IDNUM i;
term = term_pool_register(this->store, term);
hash = (BPULONG)(term);
//hash = (BPULONG)(term);
i = id_table_search(this, term);
if (i == ID_NONE) {