Schema is a language for specifying logical theories using finite-domain typed first-order logic syntax. Because domains are finite, the language is a compact representation for propositional logic. The Schema interpreter produces propositional CNF (conjunctive normal form) which can be input to any satisfiability testing program.
The Schema interpreter is written in Common Lisp, but it is not necessary to know how to program in Lisp in order to use Schema.
As of October 15, 2024, the following language features are not fully implemented:
The prove formula
The for set generation form
The lisp SchemaParser object type
all or exists statements that contain a list of types (rather than a single type) as their third argument
;; Define set types boy, girl, and child
(type boy (set jon alex max sam))
(type girl (set mary sue ann june))
(type child (union boy girl))
;; Three different children all love the same the same girl
(exists g girl true
(exists (c1 c2 c3) (alldiff g c1 c2 c3)
(and
(loves c1 g)
(loves c2 g)
(loves c3 g))))
;; STRIPS planning
;; Define range type time
(type time (range 1 100))
;; Define set type block
(type block (A B C))
;; Preconditions and effects of move
(all t time true
(all (x y z) block (alldiff x y z)
(implies (move x y z t)
(and
;; Preconditions hold at time t
(clear x t)
(on x y t)
(clear z t)
;; Effects hold at time t+1
(on y z (+ t 1))
(clear y (+ t 1))
((not (clear z (+ t 1))))))))
Invoke any implementation of Common Lisp, and load the file "schema.el". The following Lisp functions are available:
(parse '(SCHEMA ...) '(OBSERVATION ...))
Parse a list of schemas (see BNF syntax below) and return a list of clauses in symbolic form. Each OBSERVATION is a ground atom that is asserted to be true. When the schemas are expanded, they are simplified by replacing observed atoms by true and all non-observed atoms that employ the same predicates by false.
(instantiate "test.wff" "test.scnf" &optional "test.obs")
Reads the Schema file "test.wff", instantiates it, and saves the result in symbolic conjunctive normal form in the file "test.scnf". The optional file "test.obs" contains a sequence of observed ground atoms.
(propositionalize "test.scnf" "test.cnf" "test.map")
Reads the symbolic conjunctive normal form file "test.scnf" and creates a DIMACS format CNF file3 "test.cnf". In DIMACS format (the standard input language for all modern SAT solvers), propositions are represented by positive and negative integers. The mapping from symbolic ground atoms to integers is written to the file "test.map". The file "test.cnf" may then be sent to a SAT solver.
(satisfy "test.cnf" "test.out") The solver named by the variable sat-solver-program (default "kissat") is called on "test.cnf" and the output of the solver is captured in the file "test.out". Satisfy returns 'SAT, 'UNSAT, or nil if the solver fails or its output contains neither the strings SAT nor UNSAT.
(interpret "test.out" "test.map" "test.lits" &optional sort-by-time)
Reads in the output of a SAT solver "test.out" and a mapping file "test.map", and creates a file "test.lits" containing the positive literals in the satisfying assignment in symbolic form. The file "test.out" specifies a solution by a sequence of positive and negative integers. The format of the file can be flexible; it can simply be a sequence of integers; or be in official DIMACS solution format where lines containing the integers begin with the letter "v"; or free-form text where lines containing only integers are assumed to be the solution. If for some integer, neither the integer nor its complement appears, then it is assumed to be false (negative) for the assignment. The results are sorted alphabetically unless sort-by-time is set to t, in which case the results are sorted by the last argument to each predicate, which is often used to specify a time index.
(make-instance SchemaParser '(SCHEMA ...) '(OBSERVATION ...))) See the section below on Answer Extraction for Refutation Proofs.
(solve "test.wff" "test.solution" &optional "test.obs") Reads in the Schema file "test.wff" and an optional "test.obs" observation file, solves it using the sat-solver-program and writes the results in symbolic form to "test.solution". If "test.wff" contains no prove formula, the sat solver will be called a single time. If it does contain prove, then the sat solver may be invoked several times as described in the section below on Answer Extraction for Refutation Proofs. If "test.wff" contains a prove formula, then the solution will be PROVEN or UNPROVEN; otherwise it will be SAT or UNSAT. The format of "test.solution" will be one of:
SAT followed by the positive ground literals in a satisying model, one per line
UNSAT followed by nothing
PROVEN followed by a sequence of variable bindings for answer extraction. Each variable binding is of the form (
UNPROVEN followed by the positive ground literals in a counterexample to the formula to be proved.
Schema is a language for specifying logical theories using finite-domain typed first-order logic syntax. Because domains are finite, the Schema interpreter compiles its input into propositional logic for solution by any SAT solver. A Schema program consists of a sequence of options, type declarations, and formulas. Options control certain details of the intrepreter. Type declarations bind type names to sets of Herbrand terms. Types may share elements. No type declarations are associated with predicates; every predicate may accept terms of any type as arguments. It is also permissible for different instances of predicates to take different number of arguments.
Formulas are composed, as in first-order logic, of predicates, variables, constants, function symbols, logical connections, and quantifiers. The basic function of the Schema interpreter is to instantiate the variables in each formula and convert the result to CNF.
Formulas and terms are specified in prefix (LISP) notation. The quantifiers, all and exists, iterate over sets of Herbrand terms. Terms are integers, constants, or complex terms built using uninterpreted function symbols. A quantified formula is represented by a list containing the quantifier, a variable, a set of terms, a test (integer valued) expression, and the subformula to which the quantification is applied. The subformula is instantiated only for bindings of the variable for which the test is true. For example,
(all x (range 1 10) (= 0 (mod x 2)) (p x))
can be read, "for all x in the range 1 through 10, such that x is even, assert (p x)".
Propositions are expressed in Schema as either atomic symbols or complex propositions specified by a list beginning with a predicate followed by zero or more terms. The special proposition "true" and "false" have the expected meaning. Terms can be built from interpreted functions such as + and uninterpreted function symbols. For example, the literal expression (winner john (round (* 3 8))) is instantiated as
(winner john (round 24))
where "winner" is a predicate, "john" is a simple term, "round" is an uninterpreted function symbol, and "(round 24)" is a complex term.
The integer values 1 and 0 are used to represent true and false respectively in intger expressions. The special constants "true" and "false" are equivalent to 1 and 0 respectively when they appear in integer expressions. Integer expressions may include arithmetic functions (+, -, *, div, rem, mod), comparison functions (<, <=, =, >=, >, member, eq, neq, alldiff), set composition functions (enumerated sets, ranges of integers, union, intersection, setdiff), logical functions (and, or, not), and observed predicates. Non-observed predicates may not appear in an integer expression. Note that logical functions in integer expressions are evaluated by the Schema interpreter and do not appear in the final CNF, unlike the logical operators that have the same names.
Comments can appear in the input. They begin with ;; (double semicolon) and extend to the end of the line.
Schema includes both interpreted an uninterpreted functions. Interpreted functions include mathematical operations and set operations. A term that does begin with an interpreted function is taken to be an uninterpreted function. Thus, the formula using the interpreted function + and the uninterpreted function symbol node
(all i (range 1 3) true (edge (vertex x) (vertex (+ x 1))))
is expanded to
(edge (vertex 1) (vertex 2))
(edge (vertex 2) (vertex 3))
(edge (vertex 3) (vertex 4))
The for operator can be used in a set expression (such as a type declaration) to generate a set of ground uninterpreted functions. For example,
(type Vertices (for i (range 1 3) true (vertex i))
is expanded to
(type Vertices (set (vertex 1) (vertex 2) (vertex 3))
As in logic programming, ground terms refer to themselves, or in other words, formulas are interpreted over a Herbrand universe. The predicates eq and neq check for syntactic equality at the time that formulas are instantiated. The mathematical comparison predicates cited above check for numeric equality at instantiation time. There is no semantic equality operator that would allow one to assert that two different Herbrand terms refer to the same entity.
Observed predicates are useful for describing fixed relationships in a problem instance. The true ground literals for such predicates are specified in a list provided to the Schema interpreter. The interpreter will then assume that all other literals for the predicates that appear in that list are asserted to be false.
For example, consider representing problems about a graph. The observations would specify edges in the graph, for example:
(edge N1 N2)
(edge N3 N4)
(edge N3 N5)
Making "connected" an observed predicate has several advantages:
The closed world assumption is automatically applied to the predicate. In the example above, (not (connected R1 R5)) is implicitly asserted.
The predicate may be used inside test expressions.
The instantiated formula is smaller because observed literals are compiled away.
A predicate can be declared to be observed in two ways. The Schema program can use the declaration observed with the name of the predicate. The observed declaration is followed by true literals for the predicate. These should appear before any other formulas are asserted. For example:
xxxxxxxxxx
(type Node (set N1 N2 N3 N4 N5))
(observed edge)
(edge N1 N2)
(edge N3 N4)
(edge N3 N5)
An alternative way to declare observed predicates and their true literals is to include the list of true literals in an optional arguement in the LISP API for Schema. In this case, no explicit observed declaration is used.
A type declaration defines a type name as a set of of ground terms. Terms can appear in more than one type. Types are used to expand quantified all and exists forms, but predicates themselves do not have type constraints on their arguments. Examples of type declarations:
xxxxxxxxxx
(type fruit (set apple orange banana))
(type berry (set carrot cabbage))
(type plant (union fruit vegetable))
The for operator is used to compactly create a set of non-atomic ground terms. Consider a problem where we wish to define a type Node that contains 100 terms. Instead of listing the names of the terms individually as in the previous section, we can write:
xxxxxxxxxx
(type Node (for i (range 1 100) true (n i)))
This defines Node as a set containing the terms (n 1), (n 2), and so on up to (n 100).
Care needs to be taken in translating problems stated in English. Consider the problem:
Some cars are Fords. Some cars are reliable. Are Fords reliable?
Translating this as
xxxxxxxxxx
(type Cars (set Ford))
(exists x Cars true (reliable x))
;; Negated conclusion
(not (reliable Ford))
This formula is unsatisfiable, and so one concludes that Fords are reliable. The second line in the input expands to (reliable Ford)
because Ford is the only known member of the type Cars. A better translation of the problem would include some other anonymous member of type Car which might be the reliable brand; for example,
xxxxxxxxxx
(type Cars (set Ford CarBrand02))
(exists x Cars true (reliable x))
;; Negated conclusion
(not (reliable Ford))
This formula is satisfiable, so the unwanted conclusion does not hold.
Discrete constraint satisfaction problems (CSPs) can easily be represented in Schema. The answer can be read off from the symbolic form of the SAT solution generated by the interpret function.
Multi-valued variables in CSPs can be encoded as follows. Suppose the CSP has a variable named Color whose values can be Red, Blue, or Green. In Schema, we create a proposition named Color, a type ColorValues containing the constants Red, Blue, and Green, and assert that Color holds for exactly one ColorValue.
xxxxxxxxxx
(type ColorValue (set Red Blue Green))
(exists c ColorValue (Color c))
(not (exists (c1 c2) ColorValue (neq c1 c2) (and (Color c1) (Color c2))))
Satisfiability testing can be used for deduction by negating the conclusion to be drawn from a set of assumptions. For example, suppose that Bob is shorter than Alice, Alice is shorter than Charlie, and shorter is transitive. Can you conclude that there is someone who is shorter than two other people? This problem could be encoded in Schema as follows:
xxxxxxxxxx
(type Person (set Alice Bob Charlie))
(shorter Alice Bob)
(shorter Bob Charlie)
(all (x y z) Person true (implies (and (shorter x y) (shorter y z)) (shorter x z)))
(not (exist (x y z) Person (neq y z) (and (shorter x y) (x z))))
Schema provides an alternative way of encoding a deduction problem by using the prove construct. In this case, the last line above would be replaced by:
xxxxxxxxxx
(prove () () (exist (x y z) Person (neq y z) (and (shorter x y) (x z))))
Note that the formula to be deduced is not negated. Use of prove makes makes goal of the Schema problem clear to a user.
Suppose we want to also derive the constant for person who is shorter than two other people. Schema provides the operator "prove" to support answer extraction from proofs of unsatisfiability. A single find operation may appear as the last schema in the list of input schemas. The last schema in previous example would be changed to:
xxxxxxxxxx
(prove x Person true (exists (y z) Person (neq y z) (and (shorter x y) (x z))))
Note that the conclusion inside the prove is unnegated. Prove can also be used to extract the bindings for several variables by specifying a series of variables and types in the operator. For example, suppose the problem involves people and jobs, states that all mechanics are also drivers and Alice is a mechanic. We wish to find a person with two jobs and the names of those jobs.
xxxxxxxxxx
(type Person (set Alice Bob))
(type Job (set Mechanic Driver Programmer))
(all x Person true (work x Mechanic) (work x Driver))
(works Alice Mechanic)
(works Bob Programmer)
(prove (p j1 j2) (Person Job Job) (neq j1 j2) (and (works p j1) (works p j2)))
Instead of calling the parse function directly, answer extraction begins by creating a SchemaParser object. Its initialization takes a list of schemas and a list of observations. Its method GetCNF takes a LastResult argument and returns three arguments:
A symbolic CNF formula
A status symbol
A list of answer bindings (possibly partial)
LastResult is one of SAT or UNSAT. Status is one of:
TEST: the user should test the returned CNF for satisfaibility and return the result in its next call to GetCNF.
FAIL: no answer can be found
DONE: the final answer is the list of returned answer bindings. The returned CNF formula can be ignored.
An algorithm for answer extraction using SchemaParser follows:
xxxxxxxxxx
(setq p (make-instance SchemaParser my-schemas my-observations))
(setq status 'TEST)
(setq last-result 'SAT)
(setq bindings nil)
(while (eq status 'TEST)
(multiple-value-bind (scnf status bindings) (GetCNF p last-result))
;; Test scnf using a sat solver and set last-result to SAT or UNSAT
)
(if (eq status 'DONE)
(format t "Answer is ~a" bindings)
(format t "No answer found"))
Note that answer extraction can fail even if the assumptions together with the negation of the conclusion is unsatisfiable. Consider, for example:
xxxxxxxxxx
(type Person (set Alice Bob))
(or (happy Alice) (happy Bob))
(Prove x Person t (happy x))
Answer extraction will end in FAIL because it cannot prove that Alice is happy and it cannot prove that Bob is happy.
The maximum number of wffs returned by GetCNF before it returns FAIL or DONE, and thus the maximum number of calls to a SAT solver, is
Suppose R is a binary relation. Properties of R can be asserted as follows.
Suppose R is a relation over pairs of type E
xxxxxxxxxx
;; R is a strict order
(all (x y z) E true (implies (and (r x y) (r y z)) (r x z))))
(all x E (not (R x x)))
xxxxxxxxxx
;; R is a strict total order
(all (x y z) E true (implies (and (r x y) (r y z)) (r x z))))
(all x E true (not (R x x)))
(all (x y) E (neq x y) (or (R x y) (R y x)))
We say that a relationship over types E and V is functional if for every E there is exactly one V such that R holds. Functional relations are often used when E is a set of entities and V is a set of possible values of some property of the entities.
xxxxxxxxxx
;; R is functional
(all x E true (exists y V true (R x y)))
(all x E true (not (exists (y z) V (neq y z) (and (R x y) (R x z)))))
We say that a relationship over types E and V is a mapping if (1) R is functional (2) R is onto, meaning for every V there is some E related to it by R, and (3) R is one-to-one, meaning no two E are related to the same V. Bijections are often used in representing matching problems where a set of entities must be matched to a set of unique values.
xxxxxxxxxx
;; R is a bijection
;; (1) R is functional
(all x E true (exists y V true (R x y)))
(all x E true (not (exists (y z) V (neq y z) (and (R x y) (R x z)))))
;; (2) R is onto
(all y V true (exists x E true (R x y)))
;; (3) R is one to one
(not (exists (x1 x2) E (neq x1 x2) (exists y V true (and (R x1 y) (R x2 y)))))
xxxxxxxxxx
<schema> = <option> | <type declaration> | <formula>
<option> = (option <option name> <integer expression>)
<option name> = compact | shadow
<type declaration> = (type <type name> <set expression>) |
(opentype <type name> <set expression) |
(observed <type name>)
<formula> = <proposition> | (not <formula>) |
(and <formula>*) | (or <formula>*) |
(implies <formula> <formula>) | (equiv <formula> <formula>) |
(all <variable> <set expression> <test> <formula>) |
(all (<variable>+) <set expression> <test> <formula>) |
(all (<variable>+) (<set expression>+) <test> <formula>) |
(exists <variable> <set expression> <test> <formula>) |
(exists (<variable>+) <set expression> <test> <formula>) |
(exists (<variable>+) (<set expression>+) <test> <formula>) |
(if <test> <formula>) |
(prove <variable> <set expression> <test> <formula>) |
(prove (<variable>+) <set expression> <test> <formula>) |
(prove (<variable>*) (<set expression>*) <test> <formula>)
<proposition> = <predicate symbol> | true | false |
(<predicate symbol> <term>*) |
<set expression> = <type name> | (set <term>+) |
(range <integer expression> <integer expression>) |
(union <set expression> <set expression>) |
(intersection <set expression> <set expression>) |
(setdiff <set expression> <set expression>) |
(for <variable> <set expression> <test> <term>) |
(for (<variable>+) <set expression> <test> <term>) |
(for (<variable>+) (<set expression>+) <test> <term>) |
(lisp <lisp list valued expression>)
<test> = <integer expression>
<term> = <constant symbol> | <integer expression> |
<variable> |
(<uninterpreted function symbol> <term>*)
<integer expression> = <integer> |
true | false |
<variable ranging over an integer type> |
(<observed predicate symbol> <term>*) |
(member <term> <set expression>) |
(alldiff <term> <term>+) |
(not <integer expression>) |
(and <integer expression>\*) |
(or <integer expression>\*) |
(<operator> <integer expression> <integer expression>) |
(lisp <lisp integer valued expression>)
<operator> = + | - | \* | div | rem | mod | < | <= | > | >= | = | eq | neq | \*\* | bit
A large language model can be prompted to use Schema as follows:
Make a copy of this user guide.
Eliminate the sections:
Common Lisp API
Common Lisp API for Answer Extraction
Compact Encodings
Options
Eliminate everything in this section that comes before the following paragraph:
In order to improve your ability to reason logically, I am giving you the ability to call an external tool that uses a language named Schema. When you are asked to solve a logical reasoning problem, instead of solving it yourself, you should instead translate the problem into Schema and output lines of the following form:
xxxxxxxxxx
SCHEMA[
<formula>
<formula>
...
]
where
xxxxxxxxxx
RESULT[
SAT
<literal>
<literal>
...
]
where
xxxxxxxxxx
RESULT[ UNSAT ]
If the formulas contain a prove statement, then Schema will consider it to be a deduction problem. If the formula in the prove statement deductively follows from the other formulas, then you will read lines of the following form:
xxxxxxxxxx
RESULT[
PROVEN
(<variable> <term>)
(<variable> <term>)
...
]
If the formula in the prove form does not deductively follow, then you will read
xxxxxxxxxx
RESULT[
UNPROVEN
<literal>
<literal>
...
]
where the literals describe a model that is a counterexample to the theorem.
For example, suppose you output
xxxxxxxxxx
SCHEMA[
(type Person (set Alice Bob))
(type Job (set Mechanic Driver Programmer))
(all x Person true (work x Mechanic) (work x Driver))
(works Alice Mechanic)
(works Bob Programmer)
(prove (p j1 j2) (Person Job Job) (neq j1 j2) (and (works p j1) (works p j2)))
]
then you will next read
xxxxxxxxxx
RESULT[
PROVEN
(p Alice)
(j1 Mechanic)
(j2 Driver)
]
The input formulas need not be in conjunctive normal form. Converting a formula to CNF using only the user-defined propositions can cause its size to increase exponentially. By creating new propositions, the Schema interpreter can guarantee the size of the output CNF formula is only exponential in the nesting of quantifiers. Specifically, where
M = number of input formulas
L = length of the longest input formula
D = size of the largest set appearing in a quantification statement
N = deepest nesting of quantifiers in a formula
the size of the output CNF is
When new propositions are introduced in this manner, the relationship between the input and output formulas is that the output formula entails the input formula and any model of the input formula can be extended to a model of the output formula.
The input to Schema may include the following options, which should appear before any formulas.
xxxxxxxxxx
;; Allow new propositions to be created to reduce the size of the
;; instantiated formula.
(option compact-encoding 1)
; Do not create new propositions (default).
(option compact-encoding 0)
; Do not allow the same variable name to be used in nested subformulas (default).
(option shadow 0)
; Allow an inner quantified variable to shadow an outer variable of the same name.
(option shadow 1)