Many operations in automatic theorem provers require search in huge collections of terms and clauses. Such operations typically fall into the following scheme. Given a collection S {\displaystyle S} of terms (clauses) and a query term (clause) q {\displaystyle q} , find in S {\displaystyle S} some/all terms t {\displaystyle t} related to q {\displaystyle q} according to a certain retrieval condition. Most interesting retrieval conditions are formulated as existence of a substitution that relates in a special way the query and the retrieved objects t {\displaystyle t} . Here is a list of retrieval conditions frequently used in provers:
More often than not, we are actually interested in finding the appropriate substitutions explicitly, together with the retrieved terms t {\displaystyle t} , rather than just in establishing existence of such substitutions.
Very often the sizes of term sets to be searched are large, the retrieval calls are frequent and the retrieval condition test is rather complex. In such situations linear search in S {\displaystyle S} , when the retrieval condition is tested on every term from S {\displaystyle S} , becomes prohibitively costly. To overcome this problem, special data structures, called indexes, are designed in order to support fast retrieval. Such data structures, together with the accompanying algorithms for index maintenance and retrieval, are called term indexing techniques.
Substitution trees outperform path indexing, discrimination tree indexing, and abstraction trees.2
A discrimination tree term index stores its information in a trie data structure.3
First-argument indexing is the most common strategy where the first argument is used as index. It distinguishes atomic values and the principal functor of compound terms.
Nonfirst argument indexing is a variation of first-argument indexing that uses the same or similar techniques as first-argument indexing on one or more alternative arguments. For instance, if a predicate call uses variables for the first argument, the system may choose to use the second argument as the index instead.
Multiargument indexing creates a combined index over multiple instantiated arguments if there is not a sufficiently selective single argument index.
Deep indexing is used when multiple clauses use the same principal functor for some argument. It recursively uses the same or similar indexing techniques on the arguments of the compound terms.
Trie indexing uses a prefix tree to find applicable clauses.4
Colomb, Robert M. (1991). "Enhancing unification in PROLOG through clause indexing". The Journal of Logic Programming. 10: 23–44. doi:10.1016/0743-1066(91)90004-9. /wiki/Doi_(identifier) ↩
Peter Graf. "Substitution Tree Indexing". 1994. http://pubman.mpdl.mpg.de/pubman/item/escidoc:1834191:2/component/escidoc:1857890/MPI-I-94-251.pdf ↩
John W. Wheeler; Guarionex Jordan. "An Empirical Study of Term Indexing in the Darwin Implementation of the Model Evolution Calculus". 2004. p. 5. http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.83.1789&rep=rep1&type=pdf ↩
Körner, Philipp; Leuschel, Michael; Barbosa, João; Costa, Vítor Santos; Dahl, Verónica; Hermenegildo, Manuel V.; Morales, Jose F.; Wielemaker, Jan; Diaz, Daniel; Abreu, Salvador; Ciatto, Giovanni (2022). "Fifty Years of Prolog and Beyond". Theory and Practice of Logic Programming. 22 (6): 776–858. doi:10.1017/S1471068422000102. hdl:10174/33387. ISSN 1471-0684. This article incorporates text from this source, which is available under the CC BY 4.0 license. https://www.cambridge.org/core/product/identifier/S1471068422000102/type/journal_article ↩