append_ns()
Appends two lists and returns the result.
append()
Appends two lists and returns the result.
car()
Returns the left branch of a node.
cdr()
Returns the right branch of a node.
cons()
Conses two nodes.
copy_list()
Returns a copy of a list
even_elements()
Extracts even elements of list L.
find_atom()
Search the node hash for a given node.
find_node()
Creates a new node.
free_list()
Frees all the elements of the list.
free_node()
Free a node of the node manager.
in_list()
Checks list R to see if it contains the element N.
insert_node()
Inserts a node in the node hash.
is_list_empty()
Returns 1 is the list is empty, 0 otherwise
last()
Returns the last cons in X.
llength()
Returns the length of list r.
map2()
Applies FUN to successive cars of LISTs and returns the results as a list. Lists l1 and l2 are traversed in parallel.
map()
Applies FUN to successive cars of LISTs and returns the results as a list.
new_lined_node()
Creates a new node.
new_list()
Returns a new empty list
new_node()
Creates a new node.
node_alloc()
Allocates NODE_MEM_CHUNK records and stores them in the free list of the node manager.
node_eq_fun()
Equality function for node hash.
node_hash_fun()
Hash function for nodes.
node_init()
Initializes the node manager.
node_is_failure()
Returns 0 if given node is not a FAILURE node
node_normalize()
Traverses the tree, and returns a possibly new tree that is a normalized copy of the first. Use for constant-time comparison of two trees
node_pkg_get_global_master_wff_printer()
Returns the global master wff printer
node_pkg_init()
Initializes the node package
node_pkg_quit()
Deinitializes the packages, finalizing all internal structures
node_quit()
Quits the node manager.
node_set_type()
Replaces the type of the node
node_subtract()
Deletes from list set2 the elements of list set1.
odd_elements()
Extracts odd elements of list L.
print_node()
Pretty print a formula on a file
print_sexp_custom()
Main node printing function.
reverse_ns()
reverses the list with no side-effect Description [Returns a reversed version of the given list
reverse()
Reverse a list.
setcar()
Replaces the car of X with Y
setcdr()
Replaces the cdr of X with Y
sprint_node()
Pretty print a formula into a string
swap_nodes()
Swaps two nodes.
walk()
Applies FUN to successive cars of LISTs.
()
Casts the given int to a node_ptr
()
Casts the given node_ptr to an int
()
Casts the given pointer to a node_ptr

Last updated on 2009/03/04 13h:34