1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Semantic Guidance in Prover9</title>
</head>
<body>
<h1>Semantic Guidance in Prover9</h1>
Using finite interpretations (models, algebras)
to <i>guide</i> the search for a proof.
<h2>Evaluating a Clause in an Interpretation</h2>
<ul>
<li>If all the symbols in the clause are interpreted,
the clause evaluates to TRUE or to FALSE.
<li>It can be expensive: If the interpretation has
<i>n</i> elements, and the clause has <i>v</i> variables,
there are <i>n<sup>v</sup></i> instances to consider.
</ul>
<h2>Semantic Restrictions on Inference Rules</h2>
(old method)
<ul>
<li>Example: one parent must be false in the interpretation.
<li>Problems:
<ul>
<li>blocks very useful clauses
<li>frequently incompatible with simplification strategies
</ul>
</ul>
<hr>
<h2>Semantic Guidance</h2>
<ul>
<li>Use interpretations to help
<a href="select.html">select the given clause</a>.
<li><a href="semantics.html">Example</a>.
</ul>
<hr>
<h2>Non-standard Uses of Semantic Guidance</h2>
<ul>
<li>Generate a lot of FALSE identities as candidates
to replace a quasi-identity (Kinyon).
</ul>
</body>
</html>
|