Skip to content

Commit 779e392

Browse files
committed
Deploy to GitHub Pages
0 parents  commit 779e392

File tree

191 files changed

+102909
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+102909
-0
lines changed

ConfigurationOptions.txt

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
2+
# SPDX-FileCopyrightText: 2022 Dirk Beyer <https://www.sosy-lab.org>
3+
# SPDX-FileCopyrightText: 2023 Dirk Beyer <https://www.sosy-lab.org>
4+
# SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org>
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
8+
# Further options for Boolector in addition to the default options. Format:
9+
# "Optionname=value" with ’,’ to seperate options. Optionname and value can
10+
# be found in BtorOption or Boolector C Api.Example:
11+
# "BTOR_OPT_MODEL_GEN=2,BTOR_OPT_INCREMENTAL=1".
12+
solver.boolector.furtherOptions = ""
13+
14+
# The SAT solver used by Boolector.
15+
solver.boolector.satSolver = CADICAL
16+
enum: [LINGELING, PICOSAT, MINISAT, CMS, CADICAL]
17+
18+
# Counts all operations and interactions towards the SMT solver.
19+
solver.collectStatistics = false
20+
21+
# apply additional validation checks for interpolation results
22+
solver.cvc5.validateInterpolants = false
23+
24+
# Default rounding mode for floating point operations.
25+
solver.floatingPointRoundingMode = NEAREST_TIES_TO_EVEN
26+
enum: [NEAREST_TIES_TO_EVEN, NEAREST_TIES_AWAY, TOWARD_POSITIVE, TOWARD_NEGATIVE,
27+
TOWARD_ZERO]
28+
29+
# Export solver queries in SmtLib format into a file.
30+
solver.logAllQueries = false
31+
solver.logfile = no default value
32+
33+
# Further options that will be passed to Mathsat in addition to the default
34+
# options. Format is 'key1=value1,key2=value2'
35+
solver.mathsat5.furtherOptions = ""
36+
37+
# Load less stable optimizing version of mathsat5 solver.
38+
solver.mathsat5.loadOptimathsat5 = false
39+
40+
# Use non-linear arithmetic of the solver if supported and throw exception
41+
# otherwise, approximate non-linear arithmetic with UFs if unsupported, or
42+
# always approximate non-linear arithmetic. This affects only the theories of
43+
# integer and rational arithmetic.
44+
solver.nonLinearArithmetic = USE
45+
enum: [USE, APPROXIMATE_FALLBACK, APPROXIMATE_ALWAYS]
46+
47+
# Algorithm for boolean interpolation
48+
solver.opensmt.algBool = 0
49+
50+
# Algorithm for LRA interpolation
51+
solver.opensmt.algLra = 0
52+
53+
# Algorithm for UF interpolation
54+
solver.opensmt.algUf = 0
55+
56+
# SMT-LIB2 name of the logic to be used by the solver.
57+
solver.opensmt.logic = QF_AUFLIRA
58+
enum: [CORE, QF_AX, QF_UF, QF_IDL, QF_RDL, QF_LIA, QF_LRA, QF_ALIA, QF_ALRA,
59+
QF_UFLIA, QF_UFLRA, QF_AUFLIA, QF_AUFLRA, QF_AUFLIRA]
60+
61+
# Enable additional assertion checks within Princess. The main usage is
62+
# debugging. This option can cause a performance overhead.
63+
solver.princess.enableAssertions = false
64+
65+
# log all queries as Princess-specific Scala code
66+
solver.princess.logAllQueriesAsScala = false
67+
68+
# file for Princess-specific dump of queries as Scala code
69+
solver.princess.logAllQueriesAsScalaFile = "princess-query-%03d-"
70+
71+
# The number of atoms a term has to have before it gets abbreviated if there
72+
# are more identical terms.
73+
solver.princess.minAtomsForAbbreviation = 100
74+
75+
# Random seed for SMT solver.
76+
solver.randomSeed = 42
77+
78+
# If logging from the same application, avoid conflicting logfile names.
79+
solver.renameLogfileToAvoidConflicts = true
80+
81+
# Double check generated results like interpolants and models whether they
82+
# are correct
83+
solver.smtinterpol.checkResults = false
84+
85+
# Further options that will be set to true for SMTInterpol in addition to the
86+
# default options. Format is 'option1,option2,option3'
87+
solver.smtinterpol.furtherOptions = []
88+
89+
# Which SMT solver to use.
90+
solver.solver = SMTINTERPOL
91+
enum: [OPENSMT, MATHSAT5, SMTINTERPOL, Z3, PRINCESS, BOOLECTOR, CVC4, CVC5,
92+
YICES2, DREAL4]
93+
94+
# Sequentialize all solver actions to allow concurrent access!
95+
solver.synchronize = false
96+
97+
# Use provers from a seperate context to solve queries. This allows more
98+
# parallelity when solving larger queries.
99+
solver.synchronized.useSeperateProvers = false
100+
101+
# Log solver actions, this may be slow!
102+
solver.useLogger = false
103+
104+
# Activate replayable logging in Z3. The log can be given as an input to the
105+
# solver and replayed.
106+
solver.z3.log = no default value
107+
108+
# Ordering for objectives in the optimization context
109+
solver.z3.objectivePrioritizationMode = "box"
110+
allowed values: [lex, pareto, box]
111+
112+
# Engine to use for the optimization
113+
solver.z3.optimizationEngine = "basic"
114+
allowed values: [basic, farkas, symba]
115+
116+
# Require proofs from SMT solver
117+
solver.z3.requireProofs = false
118+
119+
# Whether to use PhantomReferences for discarding Z3 AST
120+
solver.z3.usePhantomReferences = false

api/allclasses-index.html

Lines changed: 865 additions & 0 deletions
Large diffs are not rendered by default.

api/allclasses.html

Lines changed: 158 additions & 0 deletions
Large diffs are not rendered by default.

api/allpackages-index.html

Lines changed: 241 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
1+
<!DOCTYPE HTML>
2+
<!-- NewPage -->
3+
<html lang="en">
4+
<head>
5+
<!-- Generated by javadoc (11.0.19) on Thu Apr 25 11:26:47 UTC 2024 -->
6+
<title>All Packages (JavaSMT Solver Library)</title>
7+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8+
<meta name="dc.created" content="2024-04-25">
9+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
10+
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
11+
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
12+
<script type="text/javascript" src="script.js"></script>
13+
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
14+
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
15+
<!--[if IE]>
16+
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
17+
<![endif]-->
18+
<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
19+
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
20+
</head>
21+
<body>
22+
<script type="text/javascript"><!--
23+
try {
24+
if (location.href.indexOf('is-external=true') == -1) {
25+
parent.document.title="All Packages (JavaSMT Solver Library)";
26+
}
27+
}
28+
catch(err) {
29+
}
30+
//-->
31+
var pathtoroot = "./";
32+
var useModuleDirectories = true;
33+
loadScripts(document, 'script');</script>
34+
<noscript>
35+
<div>JavaScript is disabled on your browser.</div>
36+
</noscript>
37+
<header role="banner">
38+
<nav role="navigation">
39+
<div class="fixedNav">
40+
<!-- ========= START OF TOP NAVBAR ======= -->
41+
<div class="topNav"><a id="navbar.top">
42+
<!-- -->
43+
</a>
44+
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
45+
<a id="navbar.top.firstrow">
46+
<!-- -->
47+
</a>
48+
<ul class="navList" title="Navigation">
49+
<li><a href="index.html">Overview</a></li>
50+
<li>Package</li>
51+
<li>Class</li>
52+
<li><a href="overview-tree.html">Tree</a></li>
53+
<li><a href="deprecated-list.html">Deprecated</a></li>
54+
<li><a href="index-all.html">Index</a></li>
55+
<li><a href="help-doc.html">Help</a></li>
56+
</ul>
57+
</div>
58+
<div class="subNav">
59+
<ul class="navList" id="allclasses_navbar_top">
60+
<li><a href="allclasses.html">All&nbsp;Classes</a></li>
61+
</ul>
62+
<ul class="navListSearch">
63+
<li><label for="search">SEARCH:</label>
64+
<input type="text" id="search" value="search" disabled="disabled">
65+
<input type="reset" id="reset" value="reset" disabled="disabled">
66+
</li>
67+
</ul>
68+
<div>
69+
<script type="text/javascript"><!--
70+
allClassesLink = document.getElementById("allclasses_navbar_top");
71+
if(window==top) {
72+
allClassesLink.style.display = "block";
73+
}
74+
else {
75+
allClassesLink.style.display = "none";
76+
}
77+
//-->
78+
</script>
79+
<noscript>
80+
<div>JavaScript is disabled on your browser.</div>
81+
</noscript>
82+
</div>
83+
<a id="skip.navbar.top">
84+
<!-- -->
85+
</a></div>
86+
<!-- ========= END OF TOP NAVBAR ========= -->
87+
</div>
88+
<div class="navPadding">&nbsp;</div>
89+
<script type="text/javascript"><!--
90+
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
91+
//-->
92+
</script>
93+
</nav>
94+
</header>
95+
<main role="main">
96+
<div class="header">
97+
<h1 title="All&amp;nbsp;Packages" class="title">All&nbsp;Packages</h1>
98+
</div>
99+
<div class="allPackagesContainer">
100+
<ul class="blockList">
101+
<li class="blockList">
102+
<table class="packagesSummary">
103+
<caption><span>Package Summary</span><span class="tabEnd">&nbsp;</span></caption>
104+
<tr>
105+
<th class="colFirst" scope="col">Package</th>
106+
<th class="colLast" scope="col">Description</th>
107+
</tr>
108+
<tbody>
109+
<tr class="altColor">
110+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a></th>
111+
<td class="colLast">
112+
<div class="block">JavaSMT: a generic SMT solver API.</div>
113+
</td>
114+
</tr>
115+
<tr class="rowColor">
116+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></th>
117+
<td class="colLast">
118+
<div class="block">The core interfaces for abstracting from SMT solvers and providing a common API for all solvers.</div>
119+
</td>
120+
</tr>
121+
<tr class="altColor">
122+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></th>
123+
<td class="colLast">
124+
<div class="block">The visitors of this package allow for efficient traversal, manipulation and transformation of
125+
formulas.</div>
126+
</td>
127+
</tr>
128+
<tr class="rowColor">
129+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></th>
130+
<td class="colLast">
131+
<div class="block">Abstract base classes for easier implementation of a solver backend.</div>
132+
</td>
133+
</tr>
134+
<tr class="altColor">
135+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html">org.sosy_lab.java_smt.basicimpl.tactics</a></th>
136+
<td class="colLast">
137+
<div class="block">Default tactics implementations (formula-to-formula transformations).</div>
138+
</td>
139+
</tr>
140+
<tr class="rowColor">
141+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></th>
142+
<td class="colLast">
143+
<div class="block">Wrapper-classes to guarantee identical behavior for all solvers.</div>
144+
</td>
145+
</tr>
146+
<tr class="altColor">
147+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/delegate/logging/package-summary.html">org.sosy_lab.java_smt.delegate.logging</a></th>
148+
<td class="colLast">
149+
<div class="block">Wraps the proving environment with loggers.</div>
150+
</td>
151+
</tr>
152+
<tr class="rowColor">
153+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></th>
154+
<td class="colLast">
155+
<div class="block">The classes of this package wrap the whole proving environment and measure all accesses to it.</div>
156+
</td>
157+
</tr>
158+
<tr class="altColor">
159+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/delegate/synchronize/package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a></th>
160+
<td class="colLast">
161+
<div class="block">The classes of this package wrap the whole solver context and all corresponding proving
162+
environment and synchronize all accesses to it.</div>
163+
</td>
164+
</tr>
165+
<tr class="rowColor">
166+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></th>
167+
<td class="colLast">
168+
<div class="block">Some basic examples for using Java-SMT.</div>
169+
</td>
170+
</tr>
171+
<tr class="altColor">
172+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></th>
173+
<td class="colLast">
174+
<div class="block">Some basic examples for using Java-SMT.</div>
175+
</td>
176+
</tr>
177+
<tr class="rowColor">
178+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></th>
179+
<td class="colLast">
180+
<div class="block">Solver-independent tests and test utilities for the solver API.</div>
181+
</td>
182+
</tr>
183+
<tr class="altColor">
184+
<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></th>
185+
<td class="colLast">
186+
<div class="block">Utility classes implementing algorithms based on the API of JavaSMT.</div>
187+
</td>
188+
</tr>
189+
</tbody>
190+
</table>
191+
</li>
192+
</ul>
193+
</div>
194+
</main>
195+
<footer role="contentinfo">
196+
<nav role="navigation">
197+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
198+
<div class="bottomNav"><a id="navbar.bottom">
199+
<!-- -->
200+
</a>
201+
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
202+
<a id="navbar.bottom.firstrow">
203+
<!-- -->
204+
</a>
205+
<ul class="navList" title="Navigation">
206+
<li><a href="index.html">Overview</a></li>
207+
<li>Package</li>
208+
<li>Class</li>
209+
<li><a href="overview-tree.html">Tree</a></li>
210+
<li><a href="deprecated-list.html">Deprecated</a></li>
211+
<li><a href="index-all.html">Index</a></li>
212+
<li><a href="help-doc.html">Help</a></li>
213+
</ul>
214+
</div>
215+
<div class="subNav">
216+
<ul class="navList" id="allclasses_navbar_bottom">
217+
<li><a href="allclasses.html">All&nbsp;Classes</a></li>
218+
</ul>
219+
<div>
220+
<script type="text/javascript"><!--
221+
allClassesLink = document.getElementById("allclasses_navbar_bottom");
222+
if(window==top) {
223+
allClassesLink.style.display = "block";
224+
}
225+
else {
226+
allClassesLink.style.display = "none";
227+
}
228+
//-->
229+
</script>
230+
<noscript>
231+
<div>JavaScript is disabled on your browser.</div>
232+
</noscript>
233+
</div>
234+
<a id="skip.navbar.bottom">
235+
<!-- -->
236+
</a></div>
237+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
238+
</nav>
239+
</footer>
240+
</body>
241+
</html>

0 commit comments

Comments
 (0)