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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
((:FILES ; non-empty list of filenames, generated from Unix command "ls -1R"
"
.:
LICENSE
Makefile
README
Readme.lsp
books
c-files
doc
scripts
smt-examples
./books:
Makefile
bv-smt-solver
clause-processors
sat
sat-tests
./books/bv-smt-solver:
Makefile
bv-lib-definitions.acl2
bv-lib-definitions.lisp
bv-lib-lemmas.acl2
bv-lib-lemmas.lisp
bv-lib.acl2
bv-lib.lisp
redundancy-removal.acl2
redundancy-removal.lisp
smt.acl2
smt.lisp
translation.acl2
translation.lisp
./books/clause-processors:
Makefile
sat-clause-processor.acl2
sat-clause-processor.lisp
sym-str.lisp
./books/sat:
Makefile
Readme.lsp
cert.acl2
check-output.lisp
convert-to-cnf.lisp
local-clause-simp.lisp
neq-implication.lisp
recognizer.lisp
sat-package.acl2
sat-setup.lisp
sat.acl2
sat.lisp
sexpr-sat-solver-const.lisp
sulfa-dir-const.acl2
sulfa-dir-const.lisp.isf
user-entry-data-structure.lisp
./books/sat-tests:
Makefile
benchmark.acl2
benchmark.lisp
sudoku.acl2
sudoku.lisp
test-help.acl2
test-help.lisp
test-incremental.acl2
test-incremental.lisp
tutorial.acl2
tutorial.lisp
./c-files:
Makefile
minisat-output-formater.c
sat-input-formater.c
smt-prep.c
zchaff-output-formater.c
./doc:
sat-solver-interface.txt
tool-interface.txt
./scripts:
Makefile
make_results
sexpr-sat-solver.isf
sulfa-exec-smt.isf
sulfa-smt-saved-exec
sulfa-smt-saved-exec.isf
sulfa-smt.isf
./smt-examples:
smt-lib-crafted
./smt-examples/smt-lib-crafted:
README
bb.smt
bbb.smt
bit-counting.smt
bitops0.smt
bitops1.smt
bitops2.smt
bitops3.smt
bitops4.smt
bitops5.smt
bitops7.smt
bitvec0.smt
bitvec1.smt
bitvec2.smt
bitvec3.smt
bitvec4.smt
bitvec5.smt
bitvec6.smt
bitvec7.smt
bitvec8.smt
boolextract.smt
bv8.smt
bvlt.smt
")
(:TITLE "Tools for the Subclass of Unrollable List Formulas")
(:AUTHOR/S "Erik Reeber" "Warren A. Hunt, Jr.")
(:KEYWORDS
"SULFA" "SAT" "SMT")
(:ABSTRACT "
A SAT-based decision procedure for the Subclass of Unrollable List Formulas in
ACL2 (SULFA). Our tool requires a special build process described in the
top-level README file. See books/sat-tests/tutorial.lisp for an overview of
how to use the tool.
")
(:PERMISSION ; author/s permission for distribution and copying:
"
Copyright (C) 2007, Regents of the University of Texas
Written by Erik Reeber and Warren A. Hunt, Jr.
License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
"))
|